strings.trieNode.table (field)
12 uses
	strings (current package)
		replace.go#L155: 	table []*trieNode
		replace.go#L191: 			t.table = make([]*trieNode, r.tableSize)
		replace.go#L192: 			t.table[r.mapping[t.prefix[0]]] = prefixNode
		replace.go#L193: 			t.table[r.mapping[key[0]]] = keyNode
		replace.go#L207: 	} else if t.table != nil {
		replace.go#L210: 		if t.table[m] == nil {
		replace.go#L211: 			t.table[m] = new(trieNode)
		replace.go#L213: 		t.table[m].add(key[1:], val, priority, r)
		replace.go#L238: 		if node.table != nil {
		replace.go#L243: 			node = node.table[index]
		replace.go#L292: 	r.root.table = make([]*trieNode, r.tableSize)
		replace.go#L344: 			if index == r.tableSize || r.root.table[index] == nil {
|  | The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |